home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 August / CHIP_CD_2005-08.iso / bonus / photo_rest / files / setup.exe / {app} / DOS / MANUALS / glossary.txt next >
Text File  |  2001-11-02  |  3KB  |  83 lines

  1.                                *** GLOSSARY ***
  2.  
  3.      This  glossary  contains short explanations of terms used throughout
  4. manuals. If you are familiar with these ones, you might want to skip it.
  5.  
  6. ATTRIBUTE
  7.      when  volume  is formatted using NTFS, all properties of files are stored
  8. as  "File  Attributes".  Even  the  contents  of  file are stored as a special
  9. attribute  ($DATA).  This  allows  file system to treat all objects in uniform
  10. manner.
  11.  
  12.  
  13. BOOT SECTOR (BOOT RECORD)
  14.      system  record  in  the  beginning  of a volume containing startup loader
  15. program  and  some  important  disk  information,  e.g. FAT size and number of
  16. sectors per cluster.
  17.  
  18. CLUSTER
  19.      is a least possible allocation unit the operating system uses. It usually
  20. consists of several disk sectors.
  21.  
  22. CLUSTER FACTOR (CF)
  23.      number of 512-byte sectors per cluster. CF is always a power of two, i.e.
  24. 1, 2, 4, 8, 16, ..., 128
  25.  
  26. DIRECTORY
  27.      is a system record storing the information about particular file on disk.
  28. Most  significant  examples  include file name, file size and first cluster of
  29. the file
  30.  
  31. DISK
  32.      is a physical device attached to the system (e.g. "Quantum Fireball CR4.3"),
  33.  
  34. DISK IMAGE
  35.      sector-by  sector  copy  of  either a physical disk or a volume stored in
  36. file.
  37.  
  38. FAT (File Allocation Table)
  39.      is  a  system  area storing the information about where files are located
  40. and  about  free areas of disk. This data structure is of most importance when
  41. it comes to data recovery. Other system structures are either not required for
  42. recovery  or  can be reconstructed with minor effort, while FAT is necessary.
  43. Two  copies of FAT are stored on disk in order to increase fault tolerance, so
  44. once one is damaged, another (backup) copy can be used instead.
  45.  
  46. FILE RECORD SEGMENT (FRS)
  47.      is  a  record in MFT on NTFS volume (see MFT). At least one FRS is stored
  48. in MFT for each file or directory on volume.
  49.  
  50. INDEX (INDEX BLOCK)
  51.      NTFS  stores directory contents in a special format (sometimes called "b+
  52. tree").  This allows faster directory searches and sorting. INDEX contains all
  53. b+  tree  records for a particular directory, and INDEX BLOCK (being a part of
  54. index) contains part of the b+ tree structure.
  55.  
  56. LONG FILE NAME (LFN)
  57.      Windows 9x/ME/NT extension to a FAT filesystem, which allows creating
  58. file names exceeding MS-DOS "8.3" standard.
  59.  
  60. MASTER FILE TABLE (MFT)
  61.      is  a  most  significant  system  structure on NTFS. It holds all records
  62. about  files,  file  names  and  file contents. MFT is an array of FILE RECORD
  63. SEGMENTS, each of them describing an uniquie file or directory.
  64.  
  65. MATCH FACTOR (M.F.) - see RELEVANCE
  66.  
  67. PARTITION TABLE (MASTER BOOT SECTOR, MASTER BOOT RECORD, MBR)
  68.      is  a  system  record  storing information about volume layout, i.e. what
  69. logical  volumes  are  stored  on  a  physical disk, about their locations and
  70. sizes.
  71.  
  72. RELEVANCE
  73.      characterizes  the  quality  of  some data (e.g. quality of the parameter
  74. set).  It  is usually computed as (FoundObjects/ExpectedObjects)*100%. Greater
  75. relevance values mean better quality.
  76.  
  77. SECTOR
  78.      is  a  minimum  amount  of data disk can address and/or transfer during a
  79. single operation. It is 512 bytes on PCs.
  80.  
  81. VOLUME or PARTITION
  82.      is a logical volume (e.g. "C:", "D:") on a physical DISK
  83.